home *** CD-ROM | disk | FTP | other *** search
- function checkLoad()
- {
- var _loc1_ = getBytesLoaded();
- var _loc2_ = _loc1_ / totalBytes;
- loadPercent_txt.text = Math.floor(_loc2_ * 100) + "%";
- if(_loc1_ == totalBytes)
- {
- gotoAndStop("title");
- clearInterval(nCheck);
- }
- }
- stop();
- var nCheck = setInterval(checkLoad,20);
- var totalBytes = getBytesTotal();
-